home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / maths / maths.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.4 KB  |  52 lines

  1. #if (_WIN32_WCE < 200)
  2. #error "This sample can only be compiled for Windows CE 2.0 or later."
  3. #endif
  4.  
  5. // Maths.h : main header file for the MATHS application
  6. //
  7.  
  8. // This is a part of the Microsoft Foundation Classes C++ library.
  9. // Copyright (C) 1999 Microsoft Corporation
  10. // All rights reserved.
  11. //
  12. // This source code is only intended as a supplement to the
  13. // Microsoft Foundation Classes Reference and related
  14. // electronic documentation provided with the library.
  15. // See these sources for detailed information regarding the
  16. // Microsoft Foundation Classes product.
  17.  
  18. #ifndef __AFXWIN_H__
  19.     #error include 'stdafx.h' before including this file for PCH
  20. #endif
  21.  
  22. #include "resource.h"        // main symbols
  23.  
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CMathsApp:
  26. // See Maths.cpp for the implementation of this class
  27. //
  28.  
  29. class CMathsApp : public CWinApp
  30. {
  31. public:
  32.     CMathsApp();
  33.  
  34. // Overrides
  35.     // ClassWizard generated virtual function overrides
  36.     //{{AFX_VIRTUAL(CMathsApp)
  37.     public:
  38.     virtual BOOL InitInstance();
  39.     //}}AFX_VIRTUAL
  40.  
  41. // Implementation
  42.  
  43.     //{{AFX_MSG(CMathsApp)
  44.         // NOTE - the ClassWizard will add and remove member functions here.
  45.         //    DO NOT EDIT what you see in these blocks of generated code !
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50.  
  51. /////////////////////////////////////////////////////////////////////////////
  52.